home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
BBS in a Box 7
/
BBS in a Box - Macintosh - Volume VII (BBS in a Box) (January 1993).iso
/
Files
/
System7 tools
/
D
/
DarkSide of the Mac 3.1.1.cpt
/
DarkSide of the Mac 3.1.1
/
FaderShell
/
Fader.r
< prev
next >
Wrap
Text File
|
1992-06-07
|
1KB
|
61 lines
/*
DarkSide 3.0 - a 7.0 dependant, system clean expandable screen saver.
copyright © 1990, 1991, 1992 by Tom Dowdy
All rights reserved.
*/
#define systemSevenOrLater 1
#include "Types.r"
#include "SysTypes.r"
#include "BalloonTypes.r"
#define areaHeight 150
#define areaWidth 300
// dialog control list
type 'DCTL' {
integer = $$CountOf(DCTLArray);
array DCTLArray {
integer; // item number - zero for expressing cluster ranges
integer; // minValue for grouped items
integer; // maxValue for grouped items
integer; // setting index, 0-19 for shorts, 20-23 for strings
};
};
// default settings
type 'DFLT' {
array Shorts {
integer; // range of shorts
};
array Strings {
pstring;
};
};
type 'HELP' {
string;
};
// application name
resource 'STR ' (-16396, purgeable) {
"DarkSide of the Mac 3.1.1"
};
// version info
resource 'vers' (1, purgeable) {
0x03, 0x01, release, 0x01, verUS,
"3.1.1",
"3.1.1 (US), © Tom Dowdy, 1990-92"
};
resource 'vers' (2, purgeable) {
0x03, 0x01, release, 0x01, verUS,
"3.1.1",
"(for DarkSide of the Mac 3.1.1)"
};